rank | frequency | n-gram |
---|---|---|
1 | 226442 | -e |
2 | 202611 | -s |
3 | 103688 | -t |
4 | 88681 | -n |
5 | 78205 | -r |
rank | frequency | n-gram |
---|---|---|
1 | 77171 | -es |
2 | 49428 | -nt |
3 | 48134 | -er |
4 | 37164 | -on |
5 | 28006 | -re |
rank | frequency | n-gram |
---|---|---|
1 | 30583 | -ent |
2 | 23793 | -ion |
3 | 14056 | -ons |
4 | 13171 | -ant |
5 | 11719 | -que |
rank | frequency | n-gram |
---|---|---|
1 | 19635 | -tion |
2 | 13511 | -ment |
3 | 9307 | -ique |
4 | 7592 | -ions |
5 | 5713 | -ient |
rank | frequency | n-gram |
---|---|---|
1 | 13627 | -ation |
2 | 10910 | -ement |
3 | 4947 | -tions |
4 | 4562 | -aient |
5 | 4116 | -iques |
The tables show the most frequent letter-N-grams at the ending of words for N=1…5. Everything runs in parallel to 2.2.5 Most frequent word beginnings. The aim is suffix detection instead of affix detection.
For N=3:
SELECT @pos:=(@pos+1), xx.* from (SELECT @pos:=0) r, (select count(*) as cnt ,concat("-", right(word,3)) FROM words WHERE w_id>100 group by right(word,3) order by cnt desc) xx limit 5;
2.2.5 Most frequent word beginnings